跳到主要内容

YEAR

Returns the year of a date, an integer in the range 1900-9999.

Syntax

expression.YEAR(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRangeApiNamenumber

Returns

number

Example

const oWorksheet = Api.GetActiveSheet();

var oFunction = Api.GetWorksheetFunction();
var ans = oFunction.YEAR("3/16/2018");

oWorksheet.GetRange("C1").SetValue(ans);